home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / man / cat.1 / bin2ihex.1 < prev    next >
Text File  |  1995-07-25  |  934b  |  18 lines

  1. bin2ihex: convert binary file to Intel-hex format records.
  2. Usage: bin2ihex [-hq] [-o outfile] [-g origin] [-b bytes/record] [infile]
  3. -g <origin>: Make addresses specified in output records start at <origin>.
  4.    <origin> may be given in decimal, octal, or hex by using C base syntax.
  5.    The default origin is 0.
  6. -o <outfile>: Write output to <outfile>.
  7.    The default is to write to the standard output.
  8. -b <bytes-per-record>: write <bytes-per-record> bytes (encoded in hex
  9.    format) on each line.  The line length will be <bytes-per-record>*2 + 11
  10.    characters (plus a newline).
  11.    <bytes-per-record> must be between 1 and 255.
  12. -d: Print a dot on stderr for every record processed.
  13. -q: Quiet operation: no status messages are printed.  If -q is not given,
  14.     the total number of bytes processed is printed to stderr at completion.
  15. -h: Print this help information.
  16.  
  17. If no input file is given, input is read from the standard input.
  18.